home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 332 / tools / makefile < prev    next >
Encoding:
Makefile  |  1988-10-08  |  197 b   |  16 lines

  1. #
  2. # Makefile for various utilities
  3. #
  4. CFLAGS = -O
  5.  
  6. PROGS = globs.ttp nm.ttp size.ttp ar.ttp cc.ttp
  7.  
  8. all: $(PROGS)
  9.     @$(ECHO) Compile done
  10.  
  11. clean:
  12.     $(RM) *.o
  13.  
  14. clobber:
  15.     $(RM) *.o *.ttp
  16.